runtime.mstats.gcPauseDist (field)

8 uses

	runtime (current package)
		metrics.go#L168: 				hist.counts[0] = atomic.Load64(&memstats.gcPauseDist.underflow)
		metrics.go#L169: 				for i := range memstats.gcPauseDist.counts {
		metrics.go#L170: 					hist.counts[i+1] = atomic.Load64(&memstats.gcPauseDist.counts[i])
		mgc.go#L727: 		memstats.gcPauseDist.record(now - work.pauseStart)
		mgc.go#L875: 			memstats.gcPauseDist.record(now - work.pauseStart)
		mgc.go#L989: 	memstats.gcPauseDist.record(now - work.pauseStart)
		mstats.go#L101: 	gcPauseDist timeHistogram
		mstats.go#L384: 	if offset := unsafe.Offsetof(memstats.gcPauseDist); offset%8 != 0 {